Revision: baz-mlh--devo--1.1--patch-4
Archive: mlh@zip.com.au--tla
Creator: MLH <mlh@zip.com.au>
Date: Thu Jan 27 14:37:50 EST 2005
Standard-date: 2005-01-27 03:37:50 GMT
Modified-files: libarch/tests/Makefile.in
New-patches: mlh@zip.com.au--tla/baz-mlh--devo--1.1--patch-4
Summary: Don't do shell 'for loop' if nothing to loop over
Keywords: 


The construct

   for s in $(test-scripts) ; do somecommand; done

is a syntax error for bash version 2.05 and most
Bourne compatible shells if the 'make' variable
$(test-scripts) is empty.

We wrap it in a gnu make conditional to
only execute if $(test-scripts) is not empty.
We cannot use a shell conditional here; it's too late.

